home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer CD Series 1999 May: Tool Chest
/
Developer CD Series Tool Chest (Apple Computer)(May 1999).iso
/
Tool Chest
/
Printing
/
FindPrinter
/
main.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1996-01-09
|
431 b
|
26 lines
|
[
TEXT/MMCC
]
// Simple testbed for Macintosh sample code
//
// Dave Polaschek
// Developer Technical Support
// AppleLink: DEVSUPPORT
//
// Copyright 1995, Apple Computer,Inc
//
// This file contains main, and nothing else.
// dave 8/15/95 initial cut
#include <stdio.h>
extern OSErr test(void); // in CurrentPrinter.c
void main(void)
{
OSErr testResult;
testResult = test();
printf("Return value from test() = %d\n",testResult);
}